github.com/gotd/td/mtproto.Conn.tempKeyTTL (field)

7 uses

	github.com/gotd/td/mtproto (current package)
		bind.go#L61: 		expiresAt = c.clock.Now().Unix() + int64(c.tempKeyTTL)
		conn.go#L121: 	tempKeyTTL int
		conn.go#L167: 		tempKeyTTL:        opt.TempKeyTTL,
		connect.go#L183: 	r, err := c.runExchange(ctx, exchange.ExchangeModeTemporary, c.tempKeyTTL)
		connect.go#L191: 		expiresAt = c.clock.Now().Unix() + int64(c.tempKeyTTL)
		pfs.go#L33: 			expiresAt = c.clock.Now().Unix() + int64(c.tempKeyTTL)
		pfs.go#L37: 		renewAt := expiresAt - int64(c.tempKeyTTL)/4